home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Fonts
/
FontNumber.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
542b
|
31 lines
// FontNumber.h
#ifndef FontNumber_h
#define FontNumber_h
#ifndef Integers_h
#include "Integers.h"
#endif
class ConstPString;
class FontNumber
{
private:
int16 number;
public:
explicit FontNumber( int16 value );
explicit FontNumber( ConstPString );
static FontNumber System();
static FontNumber Application();
int16 Value() const { return number; }
bool operator==( FontNumber f ) const { return number == f.number; }
bool operator!=( FontNumber f ) const { return number != f.number; }
};
#endif